home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 60750 / 60750.xpi / surfcanyon_sc.xpi / content / status.xul < prev    next >
Extensible Markup Language  |  2009-11-12  |  1KB  |  33 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://browser/skin/"?>
  3. <?xml-stylesheet href="chrome://mozapps/skin/pref/pref.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog SYSTEM "chrome://googlepreview/locale/googlepreview.dtd">
  6.  
  7. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.     id="sc-options"
  9.     title="Surf Canyon Status"
  10.     onload="(new SurfCanyonMisc()).optionsInit();"
  11.     ondialogaccept="(new SurfCanyonMisc()).optionsSave();"
  12.     buttons="accept,cancel">
  13.  
  14.     <script type='application/x-javascript' src='chrome://surfcanyon/content/xmlhttprequester.js'></script>
  15.     <script type="application/x-javascript" src="chrome://surfcanyon/content/script-compiler.js"/>
  16.     
  17.     <tabbox id="sc-options">
  18.         <tabpanels>
  19.             <tabpanel>
  20.                 <vbox style="max-width: 500px;">
  21.                     <groupbox>
  22.                         <caption label="Surf Canyon Status"/>
  23.                         <checkbox id="sc.disabled" label="Enable Surf Canyon"/>
  24.                         <checkbox id="sc.statusBarIconDisabled" label="Display status bar icon"/>
  25.                     </groupbox>
  26.                 </vbox>
  27.             </tabpanel>
  28.         </tabpanels>
  29.     </tabbox>
  30.  
  31. </dialog>
  32.  
  33.